8.1 Demonstration: Working with four basic data structures
Type One: Matrices
Like a spreadsheet, but must contain same variable types in all elements.
In this example, we create two matrices:
rm(list=ls()) # this code cleans my environmentdata <-c(1, 2, 3, 4, 5, 6) # create datamatrix_1 <-matrix(data, nrow =2, ncol =3) # created the first matrix by arranging the data vector into 2 rows and 3 columnsmatrix_2 <-matrix(data, nrow =3, ncol =2) # another matrix, with 3 rows and 2 columns# print these to console windowprint(matrix_1)
[,1] [,2] [,3]
[1,] 1 3 5
[2,] 2 4 6
print(matrix_2)
[,1] [,2]
[1,] 1 4
[2,] 2 5
[3,] 3 6
We use square brackets [ ] with row and column indices to access elements in a matrix.
first_row_second_column <- matrix_1[1, 2] # note that this assumes you ran the previous code to create matrix_1!entire_second_row <- matrix_1[2, ]entire_third_column <- matrix_1[, 3]print(first_row_second_column)
[1] 3
print(entire_second_row)
[1] 2 4 6
print(entire_third_column)
[1] 5 6
We can modify (add or update) elements in a matrix by assigning values using row and column indices:
matrix_1[1, 1] <-42# this changes the element at row 1, column 1 to 42matrix_2[, 2] <-c(7, 8, 9) # this changes the contents of column 2 to 7,8,9print(matrix_1)
[,1] [,2] [,3]
[1,] 42 3 5
[2,] 2 4 6
print(matrix_2)
[,1] [,2]
[1,] 1 7
[2,] 2 8
[3,] 3 9
We can also perform arithmetic and logical operations on matrices, such as element-wise addition, subtraction, multiplication, and division:
A <-matrix(c(1, 2, 3, 4), nrow =2) # create our first matrixB <-matrix(c(5, 6, 7, 8), nrow =2) # create our second matrixsum_matrix <- A + B # create a new vector which is the sum of the two matricesproduct_matrix <- A * B # create a new vector which is the product of the two matricesprint(sum_matrix)
[,1] [,2]
[1,] 6 10
[2,] 8 12
print(product_matrix)
[,1] [,2]
[1,] 5 21
[2,] 12 32
We can apply functions to matrices to perform various operations, such as calculating the transposed matrix, row and column sums, and more:
transpose_matrix <-t(A) # this transposes matrix Arow_sums <-rowSums(A)col_sums <-colSums(A)print(transpose_matrix)
[,1] [,2]
[1,] 1 2
[2,] 3 4
Use the * operator to perform matrix multiplication (not element-wise):
multiplied_matrix <- A *t(B)print(multiplied_matrix)
[,1] [,2]
[1,] 5 18
[2,] 14 32
Type Three: Lists
Lists are used to store and organise a collection of elements. Unlike vectors and matrices, lists can store elements of different data types and structures.
We can use the list() function to create a list by combining elements:
rm(list=ls()) # this code cleans my environmentsimple_list <-list(42, "celtic", TRUE)nested_list <-list(number =42, text ="hello", vector =c(1, 2, 3), matrix =matrix(1:4, nrow =2))
When you run this code, look at your environment window, and click on [nested_list]. Do you see what the code above has created?
We can use double square brackets [[ ]] or the dollar sign with an index or a name to access elements in a list:
first_element <- simple_list[[1]] # access using indexnamed_element <- nested_list$text # access using namethird_element <- nested_list$vector # access using name
We can add, update, or remove elements by assigning values using indexing or names:
simple_list[[2]] <-"banana"nested_list$new_element <-"Morton are great!"nested_list$number <-NULL# removes the 'number' element
We can also perform operations on elements within a list using indexing or names to access them:
We can apply functions to lists to perform different operations, such as calculating the length of the list or extracting specific elements from it:
list_length <-length(simple_list) # returns the list lengthfirst_two_elements <- simple_list[1:2] # returns the first two elements of the list
We can convert a list to other data structures using functions such as unlist(), as.data.frame(), or as.matrix(), as long as the list’s structure permits it:
simple_list <-list(1, 2, 3)vector_from_list <-unlist(simple_list) # create a vector from a listprint(vector_from_list)
[1] 1 2 3
nested_list <-list(list(1, 2), list(3, 4, 5))dataframe_from_list <-as.data.frame(nested_list) # create a dataframe from two listsprint(dataframe_from_list)
X1 X2 X3 X4 X5
1 1 2 3 4 5
Type Four: Data Frames
Data frames are similar to matrices, but can store columns of different data types, making them ideal for handling datasets with mixed data types.
We use the data.frame() function to create a data frame by combining vectors or other data structures as columns:
rm(list=ls()) # this code cleans my environmentnames <-c("Scotland", "England", "Wales") # create a vector of namesages <-c(25, 30, 22) # create a vector of agesheights <-c(165, 180, 172) # create a vector of heightsdata <-data.frame(Name = names, Age = ages, Height = heights) # this creates a dataframe called [data], which includes all three vectorsprint(data)
Name Age Height
1 Scotland 25 165
2 England 30 180
3 Wales 22 172
As with matrices, we can use square brackets [ ], double square brackets [[ ]], or the dollar sign with row and column indices or names to access elements, rows, or columns in our data frame.
For example:
first_row <- data[1, ]age_column <- data$Age # note how we refer to a specific vector (variable) within the dataframethird_row_second_column <- data[3, "Age"]
We can add, update, or remove elements, rows, or columns by assigning values using indexing or names.
data$Name[1] <-"Alicia"# change an elementdata$Weight <-c(60, 85, 75) # add a new columndata[4, ] <-c("David", 23, 185, 80) # add a new rowdata$Weight <-NULL# Remove the 'weight' column
We can also perform operations on elements, rows, or columns within a data frame using indexing or names to access them:
data$Age <-as.numeric(data$Age) # we need to convert data$Age to a numeric variable typeavg_age <-mean(data$Age) # we can then do some calculations on ittall_people <- data[data$Height >175, ]
We can apply functions to data frames to perform various operations, such as calculating the dimensions, extracting specific elements, and more:
num_rows <-nrow(df) # this function (nrow) tells us how many rows are in our data framenum_columns <-ncol(df)column_names <-colnames(df)row_names <-rownames(df)
We can use logical conditions, column indices, or column names to filter or subset data frames:
We can also use this approach to remove a variable from a data frame:
data_02 <-subset(data, select =-c(Age)) # creates a new data frame without variable [Age]
Type Five: Tibbles
Tibbles offer several improvements over data frames, such as better printing in the console, the ability to handle column names with special characters or spaces, and automatic data type detection.
Tibbles are an integral part of the tidyverse package and work well with other tidyverse functions and packages.
rm(list=ls()) # this code cleans my environmentlibrary(tidyverse) # assumes you've installed tidyverse!
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ readr 2.1.5
✔ forcats 1.0.0 ✔ stringr 1.5.1
✔ ggplot2 3.5.1 ✔ tibble 3.2.1
✔ lubridate 1.9.3 ✔ tidyr 1.3.1
✔ purrr 1.0.2
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
We can use the tibble() function to create a tibble, by combining vectors or other data structures as columns:
Similar to data frames, use square brackets [ ], double square brackets [[ ]], or the dollar sign with row and column indices or names to access elements, rows, or columns in a tibble:
We can add, update, or remove elements, rows, or columns by assigning values using indexing or names:
tb$Name[1] <-"Alicia"tb$Weight <-c(60, 85, 75) # Add a new columntb <-add_row(tb, Name ="David", Age =23, Height =185, Weight =80) # Add a new rowtb$Weight <-NULL# Remove the 'Weight' column
We can perform operations on elements, rows, or columns within a tibble using indexing or names to access them:
8.2 Practice: Working with the five basic data structures
Task 1: Matrices
Create and Modify: Create a 4x4 matrix with elements from 1 to 16. Then change the element in the third row, second column to 100.
Element Access and Operations: Extract the second column from your matrix. Calculate the sum of the elements in this column.
Arithmetic Operations: Add 5 to each element of the entire matrix. Then, create another 4x4 matrix of random numbers and find the element-wise product of the two matrices.
Function Application: Calculate and print the row sums and column sums of the final matrix you obtained in the previous step.
Task 2: Lists
Create and Access: Make a list containing a numeric vector, a character vector, and a logical vector. Access and print the second element of the list.
Update and Modify: Add a new element which is another list containing three character elements. Update the first element of the outer list to be twice its original values.
Operations on List Elements: From the nested list you added, extract the second element and concatenate it with the first element of the main list.
Task 3: Data Frames
Creating Data Frames: Create a data frame with three columns: [ID] (1-5), [Temperature] (random numbers representing temperature), and [Status] (character strings of different weather conditions).
Access and Modify: Extract the [Temperature] column using two different methods. Increase all temperatures by 3 degrees.
Logical Operations: Filter out rows where the [Temperature] is above a certain threshold (you decide the value) and print these rows.
Add and Remove Columns: Add a new column [AdjustedTemp] which is the original temperature plus 10. Then, remove the Status column.
Task 4: Tibbles
Create Tibbles: Convert the data frame you created in Task 3 into a tibble.
Modify and Access: Replace the first row with new data of your choosing. Then extract and print rows where [AdjustedTemp] is greater than a certain threshold.
Operations: Calculate the average of [ID] and print it. Find all rows where [ID] is less than 3 and print them.
General Task
Conversion: Convert the tibble back into a data frame, then into a list, and finally convert this list into a vector (if possible). Discuss the outputs at each step, noting any data loss or changes in structure.
8.3 Possible Solutions
Task 1: Matrices
Create and Modify
Show the answer
mat <-matrix(1:16, nrow=4)mat[3, 2] <-100print(mat)